True-colour ↔ ANSI terminal palette converter
ansi_colours
converts between 24-bit sRGB colours and 8-bit colour
palette used by ANSI terminals such as xterm or rxvt-unicode in
256-colour mode. The most common use case is when using 24-bit
colours in a terminal emulator which only support 8-bit colour
palette. It allows true-colours to be approximated by values
supported by the terminal.
When mapping true-colour into available 256-colour palette, it tries to balance accuracy and performance. It doesn’t implement the fastest algorithm nor is it the most accurate, instead it uses a formula which should be fast enough and accurate enough for most use-cases.
Usage
The algorithm has C and Rust implementations and can be easily used from C, C++ or Rust. The two implementations are equivalent and are provided for best performance. Since version 1.0.4 the Rust crate has sped up by 25% when doing True Colour → ANSI index conversion and 75% when doing conversion in the other direction.
Rust
Using this package with Cargo projects is as simple as adding a single dependency:
[]
= "1.2"
and then using one of functions that the library provides:
use *;
To facilitate better interoperability the crate defines rgb
(enabled
by default), ansi_term
, anstyle
, and termcolor
cargo features
which add support for crates with the same name.
C and C++
The easiest way to use this library in C or C++ is to copy the
ansi_colour.h
and ansi256.c
files to your project, set up
compilation step for the ansi256.c
file, add the header file to the
include path and once all that is done use the two provided functions:
int
Unfortunately neither C nor C++ ecosystem has a centralised package distribution service so there currently is no more convenient solution.